home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / util / gnu / emacs_src.lha / src / amiga / emacs-18.59 / unix / include / grp.h < prev    next >
C/C++ Source or Header  |  1992-07-08  |  296b  |  13 lines

  1. #ifndef _GRP_H
  2. #define _GRP_H
  3.  
  4. struct group {
  5.   char *gr_name;        /* name of the group */
  6.   char *gr_passwd;        /* encrypted password of the group */
  7.   gid_t gr_gid;            /* numerical group ID */
  8.   char **gr_mem;        /* null-terminated array of pointers to the
  9.                    individual member names */
  10. };
  11.  
  12. #endif
  13.